+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
+2000-04-15 Havoc Pennington <hp@pobox.com>
+
+ * gdk/gdkdnd.h: clean up enum format, remove extra comma,
+ this keeps scanner scripts from getting confused.
+
+ * gdk/gdkdraw.c (gdk_drawable_get_data): This should return the
+ data, rather than void
+
2000-04-15 Tor Lillqvist <tml@iki.fi>
* gtk/gtkclist.c (gtk_clist_motion)
typedef struct _GdkDragContext GdkDragContext;
-typedef enum {
+typedef enum
+{
GDK_ACTION_DEFAULT = 1 << 0,
GDK_ACTION_COPY = 1 << 1,
GDK_ACTION_MOVE = 1 << 2,
GDK_ACTION_ASK = 1 << 5
} GdkDragAction;
-typedef enum {
+typedef enum
+{
GDK_DRAG_PROTO_MOTIF,
GDK_DRAG_PROTO_XDND,
GDK_DRAG_PROTO_ROOTWIN, /* A root window with nobody claiming
* drags */
GDK_DRAG_PROTO_NONE, /* Not a valid drag window */
GDK_DRAG_PROTO_WIN32_DROPFILES, /* The simple WM_DROPFILES dnd */
- GDK_DRAG_PROTO_OLE2, /* The complex OLE2 dnd (not implemented) */
+ GDK_DRAG_PROTO_OLE2 /* The complex OLE2 dnd (not implemented) */
} GdkDragProtocol;
/* Structure that holds information about a drag in progress.
g_dataset_set_data_full (drawable, key, data, destroy_func);
}
-void
+gpointer
gdk_drawable_get_data (GdkDrawable *drawable,
const gchar *key)
{
- g_dataset_get_data (drawable, key);
+ return g_dataset_get_data (drawable, key);
}
GdkDrawableType
const gchar *key,
gpointer data,
GDestroyNotify destroy_func);
-void gdk_drawable_get_data (GdkDrawable *drawable,
+gpointer gdk_drawable_get_data (GdkDrawable *drawable,
const gchar *key);
void gdk_drawable_get_size (GdkWindow *drawable,